home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_05 / allison / tcursor.cpp < prev    next >
C/C++ Source or Header  |  1994-03-23  |  311b  |  19 lines

  1. LISTING 8 - Illustrates cursor control functions
  2. // tcursor.cpp:     Changes the shape of the cursor
  3.  
  4. #include <stdio.h>
  5. #include "cursor.h"
  6.  
  7. main()
  8. {
  9.     Cursor::block();
  10.     getchar();
  11.     Cursor::line();
  12.     getchar();
  13.     Cursor::off();
  14.     getchar();
  15.     Cursor::line();
  16.     return 0;
  17. }
  18.  
  19.